home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_100
/
191_01
/
std.h
< prev
next >
Wrap
Text File
|
1986-04-19
|
306b
|
15 lines
/*#title STD.H 03/15/86 */
#define FALSE 0
#define TRUE !FALSE
#define NUL 0
#define FOREVER while (TRUE)
#define XX 0
#define CR 0x0D
#define LF 0x0A
typedef char BOOLEAN;
typedef unsigned char BYTE;
typedef unsigned WORD;
typedef int (*FUNPTR)();